.herosec-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 100px 0 50px;
    background: linear-gradient(-45deg, #6a11cb, #2575fc, #ff6a00, #ffcc00);
    background-size: 400% 400%;
    animation: herosec-gradient 15s ease infinite;
}

@keyframes herosec-gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

#herosec-bg-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.herosec-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: auto;
    color: #fff;
}

.herosec-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.herosec-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    opacity: 0.85;
}

.herosec-description {
    font-size: 1rem;
    opacity: 0.9;
}

.herosec-services .herosec-service-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    text-align: center;
    cursor: pointer;
    color: #fff;
}

.herosec-services .herosec-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

.herosec-services .herosec-service-card i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.herosec-services .herosec-service-card span {
    font-weight: 600;
}

.herosec-cta-btn {
    background: #fff;
    color: #2575fc;
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 50px;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.herosec-cta-btn:hover {
    background: #2575fc;
    color: #fff;
    transform: scale(1.05);
}

/* Updated Header CSS */
.head-navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1030;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
}

.head-navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.head-navbar-container {
    padding-left: 15px;
    padding-right: 15px;
}

.head-brand {
    color: #fff;
    text-decoration: none;
}

.head-navbar.scrolled .head-brand,
.head-navbar.scrolled .head-title,
.head-navbar.scrolled .head-tagline,
.head-navbar.scrolled .nav-link,
.head-navbar.scrolled .navbar-toggler-icon {
    color: #000;
}

.head-logo {
    height: 40px;
}

.head-title {
    font-weight: 700;
    font-size: 1.25rem;
}

.head-tagline {
    font-size: 0.75rem;
    opacity: 0.8;
}

.nav-link.active {
    font-weight: 600;
}

.head-nav-links .nav-link {
    color: #fff;
}

.head-btn-wrapper .head-cta-btn {
    background: #fff;
    color: #2575fc;
    border-radius: 50px;
    font-weight: 600;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.head-btn-wrapper .head-cta-btn:hover {
    background: #2575fc;
    color: #fff;
}

.head-navbar .navbar-toggler-icon {
    color: #fff;
}

/* Mobile specific styles */
@media (max-width: 991.98px) {
    .head-tagline {
        display: none;
    }

    .head-navbar.scrolled .head-tagline {
        display: none;
    }

    .head-navbar .navbar-collapse {
        background-color: #fff;
        margin-top: 10px;
        padding: 10px 0;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .head-nav-links .nav-link,
    .head-btn-wrapper .head-cta-btn {
        color: #000;
        text-align: center;
    }

    .head-btn-wrapper {
        display: flex;
        justify-content: center;
    }

    .head-btn-wrapper .head-cta-btn {
        background-color: #2575fc;
        color: #fff;
    }

    .head-navbar .navbar-toggler {
        border: 1px solid #fff;
        color: #fff;
    }

    .head-navbar.scrolled .navbar-toggler {
        border: 1px solid #000;
        color: #000;
    }
}



